home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / falcon / programm.ing / nt_dsp1.lzh / NT_DSP1.MSA / MATRIX / MATMUL2.HLP < prev    next >
Text File  |  1989-01-24  |  796b  |  17 lines

  1.          Name: MATMUL2 
  2.          Type: Assembler Program
  3.       Version: 1.0
  4.   Last Change:  4-Feb-87
  5.                                                             
  6.   Description: General Matrix Multiplication Program
  7.  
  8.  This program performs a matrix multiplication of the form C=AB,
  9.  where A and B are two dimensional matrices of arbitrary
  10.  dimension.  The only restriction is that the inner dimension of
  11.  the arrays must be greater than 1.  MATMUL2 multiplies an array
  12.  of dimension [WxX] in X memory by an array of dimension [YxZ]
  13.  in Y memory and leaves the resulting array of dimension [WxZ]
  14.  in Y memory.  The array dimensions X and Y must be equal (arrays
  15.  must be conformable) and must be greater than 1.  Data storage
  16.  format is row major storage (second subscript varies).
  17.